home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / fnordadl / fn132src.zoo / cith / modem.h < prev    next >
C/C++ Source or Header  |  1991-09-02  |  593b  |  26 lines

  1. /*
  2.  * modem.h -- defines and stuff for dealing with the modem in Fnordadel
  3.  *
  4.  * 91Apr29 AA    Extracted from ctdl.h and elsewhere
  5.  */
  6.  
  7. #ifndef _MODEM_H
  8. #define _MODEM_H
  9.  
  10. /*
  11.  * modem stuff:
  12.  *
  13.  * If you change the number of baud rates supported here, you need to
  14.  * modify the mCCs strings in struct config, findBaud(), and grabCC()
  15.  * in SYSDEP.C, and setBaud() in LIBDEP.C
  16.  */
  17. #define NUMBAUDS    5
  18.  
  19. #define ONLY_300    0    /* 300 baud only    */
  20. #define UPTO1200    1    /* +1200 baud        */
  21. #define UPTO2400    2    /* +2400 baud        */
  22. #define UPTO9600    3    /* +9600 baud        */
  23. #define UPTO19200    4    /* +19200 baud        */
  24.  
  25. #endif
  26.